home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / wgdb-42.lha / wgdb-4.2 / bfd / cpu-a29k.c < prev    next >
C/C++ Source or Header  |  1992-09-11  |  455b  |  25 lines

  1. #include "bfd.h"
  2. #include "sysdep.h"
  3. #include "libbfd.h"
  4.  
  5. static bfd_arch_info_type arch_info_struct = 
  6.   {
  7.     32,    /* 32 bits in a word */
  8.     32,    /* 32 bits in an address */
  9.     8,    /* 8 bits in a byte */
  10.     bfd_arch_a29k,
  11.     0,    /* only 1 machine */
  12.     "a29k",
  13.     "a29k",
  14.     true, /* the one and only */
  15.     bfd_default_compatible, 
  16.     bfd_default_scan ,
  17.     0,
  18.     0,
  19.   };
  20.  
  21. void DEFUN_VOID(bfd_a29k_arch)
  22. {
  23.   bfd_arch_linkin(&arch_info_struct);
  24. }
  25.